  /* Masquer le loader si .loader-hidden est présent */
  .loader-hidden .container_load {
	display: none !important;
  }
  
  /* Styles de base */
  * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  
  /* Loader & animations */
  .container_load {
	position: fixed; 
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 9999;
  }
  .container_load ul {
	margin: 0;
	padding: 0;
	display: flex;
	width: 100%;
	height: 100vh;
	list-style: none;
	justify-content: center;
	align-items: center;
	background-color: #f2f2f2;
  }
  .container_load li {
	height: 100vh;
  }
  .block_load-1 { width: 10%; background: #f6f5ee; }
  .block_load-2 { width: 30%; background: #efe7d7; }
  .block_load-3 { width: 20%; background: #e9d9c0; }
  .block_load-4 { width: 10%; background: #e2caaa; }
  .block_load-5 { width: 20%; background: #dcbc93; }
  .block_load-6 { width: 10%; background: #d5ae7c; }
  
  .ml11_load {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-weight: 700;
	font-size: 3.5em;
	color: #000;
	font-family:  'fark';
	text-transform: uppercase;
  }
  .ml11_load .text-wrapper_load {
	position: relative;
	display: inline-block;
	padding-top: 0.1em;
	padding-right: 0.05em;
	padding-bottom: 0.15em;
  }
  .ml11_load .line_load {
	opacity: 0;
	position: absolute;
	left: 0;
	height: 100%;
	width: 3px;
	background-color: #000;
	transform-origin: 0 50%;
  }
  .ml11_load .line1_load {
	top: 0;
	left: 0;
  }
  /* IMPORTANT : Ne pas masquer le conteneur .letters_load */
  .ml11_load .letters_load {
	/* Ne rien mettre ici */
  }
  /* Masquer chaque lettre individuellement */
  .ml11_load .letter {
	opacity: 0;
	display: inline-block;
	line-height: 1em;
  }
  
  /* Gestion du scroll pendant le chargement */
  body.loader-active {
	overflow: hidden;
  }










  @media only screen and (max-width: 767px) {
		.ml11_load {
			position: fixed;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			font-weight: 700;
			font-size: 2.5em;
			color: #000;
			font-family:  'fark';
			text-transform: uppercase;
		}
	}

  






